home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / print / 2pcl.arj / TESTMAC.BAT < prev    next >
DOS Batch File  |  1992-02-24  |  1KB  |  48 lines

  1. echo off
  2. if "%1"=="" goto info
  3. if not exist %1 goto info0
  4. echo This is how macro %1 will look: >prn:
  5. if "%2"=="" goto no_id
  6. download %1 /M%2
  7.  
  8. :has_id
  9. echo &fs%2y3x1S  >prn:
  10. unload /M%2
  11. goto out
  12.  
  13. :no_id
  14. download %1 /M31
  15.  
  16. :no_id2
  17. echo &fs31y3x1S  >prn:
  18. unload /M31
  19. goto out
  20.  
  21. :info0
  22. if not exist %1.PCL goto info1
  23. echo This is how macro %1.PCL will look: >prn:
  24. if "%2"=="" goto no_id0
  25. download %1.PCL /M%2
  26. goto has_id
  27.  
  28. :no_id0
  29. download %1.PCL /M31
  30. goto no_id2
  31.  
  32. :info1
  33. echo File %1 not found.  Please enter a valid macro file name.
  34. echo  
  35.  
  36. :info
  37. echo This batch file allows you to test print a LaserJet printer macro.
  38. echo At the DOS prompt, type TESTMAC followed by the name of the macro file,
  39. echo and optionally followed by a macro font ID (number) that is not already
  40. echo being used by another printer macro previously downloaded to the printer
  41. echo For example
  42. echo  
  43. echo        TESTMAC MYLOGO.PCL
  44. echo                    or
  45. echo        TESTMAC MYLOGO.PCL 10
  46. echo  
  47. :out
  48.